home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_08
/
9n08110a
< prev
next >
Wrap
Text File
|
1991-04-09
|
513b
|
14 lines
/*
This is a sample test file for the plist program.
*/
main() /* this is a comment */
{
int i, j, k;
printf("Hello\n"); /* this is another one */
for (i = 0; i < 8; i++) /* here's a third */
for (j = 0; j < 8; j++) /* and a fourth */
k = i * j;
exit(0); /* bye */
}